From 7343db9a771e0026c1f6acc78521025c589ee7d3 Mon Sep 17 00:00:00 2001 From: Matthew Daley Date: Wed, 30 Oct 2013 20:52:04 +1300 Subject: [PATCH] xentrace: don't try to close null libxc handle in disable_tbufs While at it, simplify the function. Coverity-ID: 1055316 Signed-off-by: Matthew Daley Reviewed-by: George Dunlap Reviewed-by: Andrew Cooper Acked-by: Ian Campbell --- tools/xentrace/xentrace.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/tools/xentrace/xentrace.c b/tools/xentrace/xentrace.c index 622bac8c4c..504763d09f 100644 --- a/tools/xentrace/xentrace.c +++ b/tools/xentrace/xentrace.c @@ -425,22 +425,18 @@ fail: static void disable_tbufs(void) { xc_interface *xc_handle = xc_interface_open(0,0,0); - int ret; if ( !xc_handle ) { perror("Couldn't open xc handle to disable tbufs."); - goto out; + return; } - ret = xc_tbuf_disable(xc_handle); - - if ( ret != 0 ) + if ( xc_tbuf_disable(xc_handle) != 0 ) { perror("Couldn't disable trace buffers"); } -out: xc_interface_close(xc_handle); } -- 2.30.2